home *** CD-ROM | disk | FTP | other *** search
- //Version 1.0
-
- function show(a,b,c){;};
-
- function omOverI(image1){
- isImg=true
- if(locked==false){
- image1.style.filter="Invert()"
- locked=false
- }
- }
-
- function omOutI(image1){
- isImg=false
- if(locked==false){
- if(locked==false)image1.style.filter = ""
- }
- }
- function omOverT(image1){
- if(locked==false){
- image1.style.backgroundColor="black"
- image1.style.color="white"
- locked=false
- }
- }
-
- function omOutT(image1){
- if(locked==false){
- image1.style.backgroundColor=""
- image1.style.color=""
- }
- }
-
- function omOverF(image1){
- if(locked==false){
- image1.style.filter="Invert()"
- locked=false
- }
- }
-
- function omOutF(image1){
- if(locked==false){
- image1.style.filter = ""
- }
- }
-
- function oClick(image1){
- if(image1==obj){
- if(obj!=null&&window.event.shiftKey==false){
- obj.style.filter=''
- obj.style.backgroundColor=""
- obj.style.color=""
- locked=false
- obj=null
- }
- }else{
- if(locked==true){
- if(obj.style.filter!=""){
- obj.style.filter=""
- }else{
- obj.style.backgroundColor=""
- obj.style.color=""
- }
- if(isImg==true){
- image1.style.filter="Invert()"
- }else{
- image1.style.backgroundColor="black"
- image1.style.color="white"
- }
- }
- locked=true
- obj=image1
- window.status='#'+image1.id
- }
- }
-
- function clr(){
- if(obj!=null){
- obj.style.filter=''
- obj.style.backgroundColor=""
- obj.style.color=""
- locked=false
- obj=null
- }
- }
-
- function selObj(image1){
- if(locked==false){
- window.status='#'+image1
- }else{
- window.status='@'
- }
- }
-
- var isImg=false
- var obj=null
- var locked=false
-
-
-